Add Method

Wintellect PowerCollections

Collapse imageExpand ImageCollapseAll imageExpandAll imageDropDown imageDropDownHover imageCopy imageCopyHover image
[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Adds an item to the end of the BigList. The indices of all existing items in the Deque are unchanged.

Namespace: Wintellect.PowerCollections
Assembly:  PowerCollections (in PowerCollections.dll)

Syntax

C#
public override sealed void Add(
	T item
)
Visual Basic (Declaration)
Public Overrides NotOverridable Sub Add ( _
	item As T _
)
Visual C++
public:
virtual void Add (
	T item
) override sealed

Parameters

item
T
The item to add.

Remarks

Adding an item takes, on average, constant time.

See Also